DATASET ACTIVATE DataSet1. * DHS Calendar Tutorial - Example 6. * Contraceptive prevalence rate (CPR) month by month over time. * download the model dataset for individual women's recode: "ZZIR62FL.SAV" * the model datasets are available at http://dhsprogram.com/data/download-model-datasets.cfm . * change to a working directory where the data are stored * or add the full path to the 'get file' command below. cd "C:\Data\DHS_model". * open the dataset to use, and just keep the variables we are going to use. get file="ZZIR62FL.SAV" / keep caseid vcal$1 v000 v005 v007 v008 v011 v018 v021 v023. * set maximum number of loops high enough. Could be as many as the length of the calendar (80), * so set it a bit higher. set mxloops = 100. * set length of calendar in a macro. define !vcal_len() 80 !enddefine. * Step 6.1. * create separate variables for each month of the calendar. vector method(!vcal_len A1). * loop through calendar creating separate variables for each month. loop #i = 1 to !vcal_len. + compute method(#i) = char.substr(vcal$1,#i,1). end loop. * Step 6.2. * restructure the new month by month variables into a long format where * the month is the unit of analysis, keeping just the variables that we need. varstocases /make method from method1 to method!vcal_len /index=i(!vcal_len) /drop=vcal$1 /null=keep. Variables to Cases Notes |-----------------------------|--------------------------------------------------------------------------------------------| |Output Created |31-AUG-2017 01:25:29 | |-----------------------------|--------------------------------------------------------------------------------------------| |Comments | | |--------------|--------------|--------------------------------------------------------------------------------------------| |Input |Filter | | | |--------------|--------------------------------------------------------------------------------------------| | |Weight | | | |--------------|--------------------------------------------------------------------------------------------| | |Split File | | |-----------------------------|--------------------------------------------------------------------------------------------| |Syntax |varstocases /make method from method1 to method80 /index=i(80 ) /drop=vcal$1 /null=keep.| |--------------|--------------|--------------------------------------------------------------------------------------------| |Resources |Processor Time|00:00:00.87 | | |--------------|--------------------------------------------------------------------------------------------| | |Elapsed Time |00:00:00.88 | |--------------------------------------------------------------------------------------------------------------------------| Generated Variables |------|------| |Name |Label | |------|------| |i || |------|------| |method|| |-------------| Processing Statistics |-------------|--| |Variables In |90| |-------------|--| |Variables Out|11| |----------------| * Step 6.3. * find the position of the earliest date of interview (the maximum value of v018). aggregate /outfile=* mode=addvariables /v018_max=max(v018). * keep only cases inside of the five years preceding the earliest interview * months 0-59 before the earliest interview date. select if i >= v018_max & i <= v018_max+59. * Step 6.4. * calculate age in months for each month in the calendar. compute agem = (v008 - v011) - (i - v018). * calculate century month code for each month. compute cmctime = v008 - (i - v018). variable labels cmctime "Century month code". print formats cmctime (f2.0). * create variable for use of any method as a 0/100 variable. compute usingany = (char.index("0BPT", method) = 0) * 100. variable labels usingany "Using any method". value labels usingany 0 "Not using" 100 "Using a method". print formats usingany (f1.0). * Step 6.5. * Compute weight variable and weight the data. compute wt = v005/1000000. weight by wt. * age range restricted to 15-44. compute agerange=(agem >= 180 & agem <= 539). filter by agerange. * simply tabulate CPR for each month. crosstabs tables=cmctime by usingany /cells row. Crosstabs Notes |-----------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |Output Created |31-AUG-2017 01:25:31 | |-----------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |Comments | | |----------------------|------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |Input |Filter |agerange | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |Weight |wt | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |Split File | | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |N of Rows in Working Data File|415066 | |----------------------|------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |Missing Value Handling|Definition of Missing |User-defined missing values are treated as missing. | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |Cases Used |Statistics for each table are based on all the cases with valid data in the specified range(s) for all variables in each table.| |-----------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |Syntax |crosstabs tables=cmctime by usingany /cells row. | |----------------------|------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |Resources |Processor Time |00:00:01.56 | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |Elapsed Time |00:00:01.55 | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |Dimensions Requested |2 | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |Cells Available |131029 | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| Case Processing Summary |------------------------------------------------------|-------------------------------------------------| | |Cases | | |--------------|---------------|------------------| | |Valid |Missing |Total | | |------|-------|-------|-------|----------|-------| | |N |Percent|N |Percent|N |Percent| |------------------------------------------------------|------|-------|-------|-------|----------|-------| |cmctime Century month code * usingany Using any method|419218|100.0% |0 |0.0% |419215.661|100.0% | |--------------------------------------------------------------------------------------------------------| cmctime Century month code * usingany Using any method Crosstabulation % within cmctime Century month code |-------------------------------|----------------------------------------|------| | |usingany Using any method |Total | | |-------------------------|--------------| | | |Not using |Using a method| | |--------------------------|----|-------------------------|--------------|------| |cmctime Century month code|1327|93.2% |6.8% |100.0%| | |----|-------------------------|--------------|------| | |1328|93.1% |6.9% |100.0%| | |----|-------------------------|--------------|------| | |1329|93.0% |7.0% |100.0%| | |----|-------------------------|--------------|------| | |1330|92.8% |7.2% |100.0%| | |----|-------------------------|--------------|------| | |1331|92.7% |7.3% |100.0%| | |----|-------------------------|--------------|------| | |1332|92.4% |7.6% |100.0%| | |----|-------------------------|--------------|------| | |1333|92.2% |7.8% |100.0%| | |----|-------------------------|--------------|------| | |1334|92.1% |7.9% |100.0%| | |----|-------------------------|--------------|------| | |1335|92.0% |8.0% |100.0%| | |----|-------------------------|--------------|------| | |1336|91.7% |8.3% |100.0%| | |----|-------------------------|--------------|------| | |1337|91.6% |8.4% |100.0%| | |----|-------------------------|--------------|------| | |1338|91.3% |8.7% |100.0%| | |----|-------------------------|--------------|------| | |1339|90.7% |9.3% |100.0%| | |----|-------------------------|--------------|------| | |1340|90.4% |9.6% |100.0%| | |----|-------------------------|--------------|------| | |1341|90.4% |9.6% |100.0%| | |----|-------------------------|--------------|------| | |1342|90.3% |9.7% |100.0%| | |----|-------------------------|--------------|------| | |1343|90.3% |9.7% |100.0%| | |----|-------------------------|--------------|------| | |1344|90.2% |9.8% |100.0%| | |----|-------------------------|--------------|------| | |1345|89.9% |10.1% |100.0%| | |----|-------------------------|--------------|------| | |1346|89.5% |10.5% |100.0%| | |----|-------------------------|--------------|------| | |1347|89.3% |10.7% |100.0%| | |----|-------------------------|--------------|------| | |1348|89.0% |11.0% |100.0%| | |----|-------------------------|--------------|------| | |1349|88.6% |11.4% |100.0%| | |----|-------------------------|--------------|------| | |1350|88.1% |11.9% |100.0%| | |----|-------------------------|--------------|------| | |1351|87.8% |12.2% |100.0%| | |----|-------------------------|--------------|------| | |1352|87.6% |12.4% |100.0%| | |----|-------------------------|--------------|------| | |1353|87.5% |12.5% |100.0%| | |----|-------------------------|--------------|------| | |1354|87.4% |12.6% |100.0%| | |----|-------------------------|--------------|------| | |1355|87.4% |12.6% |100.0%| | |----|-------------------------|--------------|------| | |1356|87.3% |12.7% |100.0%| | |----|-------------------------|--------------|------| | |1357|87.0% |13.0% |100.0%| | |----|-------------------------|--------------|------| | |1358|86.7% |13.3% |100.0%| | |----|-------------------------|--------------|------| | |1359|86.3% |13.7% |100.0%| | |----|-------------------------|--------------|------| | |1360|85.7% |14.3% |100.0%| | |----|-------------------------|--------------|------| | |1361|85.5% |14.5% |100.0%| | |----|-------------------------|--------------|------| | |1362|85.0% |15.0% |100.0%| | |----|-------------------------|--------------|------| | |1363|84.7% |15.3% |100.0%| | |----|-------------------------|--------------|------| | |1364|84.5% |15.5% |100.0%| | |----|-------------------------|--------------|------| | |1365|84.3% |15.7% |100.0%| | |----|-------------------------|--------------|------| | |1366|84.2% |15.8% |100.0%| | |----|-------------------------|--------------|------| | |1367|84.2% |15.8% |100.0%| | |----|-------------------------|--------------|------| | |1368|84.2% |15.8% |100.0%| | |----|-------------------------|--------------|------| | |1369|83.6% |16.4% |100.0%| | |----|-------------------------|--------------|------| | |1370|83.0% |17.0% |100.0%| | |----|-------------------------|--------------|------| | |1371|82.4% |17.6% |100.0%| | |----|-------------------------|--------------|------| | |1372|81.9% |18.1% |100.0%| | |----|-------------------------|--------------|------| | |1373|81.8% |18.2% |100.0%| | |----|-------------------------|--------------|------| | |1374|81.2% |18.8% |100.0%| | |----|-------------------------|--------------|------| | |1375|81.2% |18.8% |100.0%| | |----|-------------------------|--------------|------| | |1376|80.7% |19.3% |100.0%| | |----|-------------------------|--------------|------| | |1377|80.4% |19.6% |100.0%| | |----|-------------------------|--------------|------| | |1378|80.2% |19.8% |100.0%| | |----|-------------------------|--------------|------| | |1379|79.7% |20.3% |100.0%| | |----|-------------------------|--------------|------| | |1380|79.2% |20.8% |100.0%| | |----|-------------------------|--------------|------| | |1381|78.5% |21.5% |100.0%| | |----|-------------------------|--------------|------| | |1382|78.2% |21.8% |100.0%| | |----|-------------------------|--------------|------| | |1383|77.8% |22.2% |100.0%| | |----|-------------------------|--------------|------| | |1384|77.1% |22.9% |100.0%| | |----|-------------------------|--------------|------| | |1385|76.4% |23.6% |100.0%| | |----|-------------------------|--------------|------| | |1386|75.8% |24.2% |100.0%| |-------------------------------|-------------------------|--------------|------| |Total |85.9% |14.1% |100.0%| |-------------------------------------------------------------------------------| * or better, using the complex samples descriptives. * turn off weighting as the complex samples procedures don't use the weight * from the 'weight by' command, but use it from the csplan instead. * this eliminates a confusing warning message about the weight being ignored. weight off. csplan analysis /plan file='Calendar.csaplan' /planvars analysisweight=wt /srsestimator type=wor /design strata=v023 cluster=v021 /estimator type=wr. Complex Samples: Plan Notes |---------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Output Created |31-AUG-2017 01:25:32 | |---------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Comments | | |--------------|------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Input |Filter |agerange | | |------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | |Weight | | | |------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | |Split File | | | |------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | |N of Rows in Working Data File|415066 | |---------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Syntax |csplan analysis /plan file='Calendar.csaplan' /planvars analysisweight=wt /srsestimator type=wor /design strata=v023 cluster=v021 /estimator type=wr.| |--------------|------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Resources |Processor Time |00:00:00.02 | | |------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | |Elapsed Time |00:00:00.01 | |--------------|------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Files Saved |Plan File |C:\Data\DHS_model\Calendar.csaplan | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| Warnings |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |This procedure does not check the consistency of the working data file with the plan file. We recommend looking at the output table or the plan file to check consistency before performing selection or analysis.| |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| Summary |-------------------------------------------|-----------------------------------------| | |Stage 1 | |--------------------|--------------------|-|-----------------------------------------| |Design Variables |Stratification |1|V023 Stratification used in sample design| | |--------------------|-|-----------------------------------------| | |Cluster |1|V021 Primary sampling unit | |--------------------|----------------------|-----------------------------------------| |Analysis Information|Estimator Assumption |Sampling with replacement | |-------------------------------------------|-----------------------------------------| | | | |-------------------------------------------------------------------------------------| Plan File: C:\Data\DHS_model\Calendar.csaplan Weight Variable: wt SRS Estimator: Sampling without replacement * tabulate CPR for women 15-44 at the time. csdescriptives /plan file='Calendar.csaplan' /summary variables = usingany /subpop table=cmctime /mean /statistics se cin. Complex Samples: Descriptives Notes |-----------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------| |Output Created |31-AUG-2017 01:25:32 | |-----------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------| |Comments | | |----------------------|------------------------------|------------------------------------------------------------------------------------------------------------------------------| |Input |Filter |agerange | | |------------------------------|------------------------------------------------------------------------------------------------------------------------------| | |Weight | | | |------------------------------|------------------------------------------------------------------------------------------------------------------------------| | |Split File | | | |------------------------------|------------------------------------------------------------------------------------------------------------------------------| | |N of Rows in Working Data File|415066 | | |------------------------------|------------------------------------------------------------------------------------------------------------------------------| | |Plan File |C:\Data\DHS_model\Calendar.csaplan | |----------------------|------------------------------|------------------------------------------------------------------------------------------------------------------------------| |Missing Value Handling|Definition of Missing |User-defined missing values among the strata, cluster, or subpopulation variables are treated as missing. | | |------------------------------|------------------------------------------------------------------------------------------------------------------------------| | |Cases Used |Each statistic is based on all valid data for the analysis variable(s) used in computing the statistic. | |-----------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------| |Syntax |csdescriptives /plan file='Calendar.csaplan' /summary variables = usingany /subpop table=cmctime /mean /statistics se cin.| |----------------------|------------------------------|------------------------------------------------------------------------------------------------------------------------------| |Resources |Processor Time |00:00:00.84 | | |------------------------------|------------------------------------------------------------------------------------------------------------------------------| | |Elapsed Time |00:00:00.86 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| Univariate Statistics |------------------------------|--------|--------------|-----------------------------| | |Estimate|Standard Error|95% Confidence Interval | | | | |-----------------------|-----| | | | |Lower |Upper| |----|-------------------------|--------|--------------|-----------------------|-----| |Mean|usingany Using any method|14.06 |1.750 |10.61 |17.51| |------------------------------------------------------------------------------------| Subpopulation Descriptives Univariate Statistics |---------------------------------------------------------|--------|--------------|-----------------------------| |cmctime Century month code |Estimate|Standard Error|95% Confidence Interval | | | | |-----------------------|-----| | | | |Lower |Upper| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1327 |Mean|usingany Using any method|6.83 |1.395 |4.08 |9.58 | |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1328 |Mean|usingany Using any method|6.91 |1.390 |4.17 |9.65 | |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1329 |Mean|usingany Using any method|7.00 |1.385 |4.27 |9.73 | |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1330 |Mean|usingany Using any method|7.16 |1.363 |4.48 |9.85 | |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1331 |Mean|usingany Using any method|7.25 |1.355 |4.58 |9.92 | |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1332 |Mean|usingany Using any method|7.57 |1.434 |4.75 |10.40| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1333 |Mean|usingany Using any method|7.79 |1.518 |4.80 |10.78| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1334 |Mean|usingany Using any method|7.92 |1.524 |4.92 |10.92| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1335 |Mean|usingany Using any method|8.00 |1.425 |5.19 |10.80| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1336 |Mean|usingany Using any method|8.30 |1.506 |5.34 |11.27| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1337 |Mean|usingany Using any method|8.36 |1.473 |5.46 |11.26| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1338 |Mean|usingany Using any method|8.71 |1.620 |5.51 |11.90| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1339 |Mean|usingany Using any method|9.29 |1.773 |5.80 |12.79| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1340 |Mean|usingany Using any method|9.55 |1.856 |5.89 |13.21| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1341 |Mean|usingany Using any method|9.62 |1.758 |6.15 |13.08| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1342 |Mean|usingany Using any method|9.66 |1.742 |6.22 |13.09| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1343 |Mean|usingany Using any method|9.69 |1.727 |6.28 |13.09| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1344 |Mean|usingany Using any method|9.82 |1.723 |6.42 |13.21| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1345 |Mean|usingany Using any method|10.14 |1.797 |6.60 |13.69| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1346 |Mean|usingany Using any method|10.47 |1.690 |7.14 |13.81| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1347 |Mean|usingany Using any method|10.73 |1.726 |7.33 |14.13| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1348 |Mean|usingany Using any method|10.98 |1.683 |7.66 |14.29| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1349 |Mean|usingany Using any method|11.44 |1.654 |8.18 |14.70| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1350 |Mean|usingany Using any method|11.89 |1.647 |8.64 |15.14| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1351 |Mean|usingany Using any method|12.15 |1.712 |8.78 |15.53| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1352 |Mean|usingany Using any method|12.40 |1.781 |8.89 |15.91| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1353 |Mean|usingany Using any method|12.53 |1.785 |9.01 |16.05| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1354 |Mean|usingany Using any method|12.62 |1.778 |9.11 |16.12| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1355 |Mean|usingany Using any method|12.59 |1.779 |9.08 |16.09| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1356 |Mean|usingany Using any method|12.72 |1.765 |9.24 |16.20| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1357 |Mean|usingany Using any method|13.03 |1.667 |9.75 |16.32| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1358 |Mean|usingany Using any method|13.30 |1.752 |9.84 |16.75| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1359 |Mean|usingany Using any method|13.75 |1.801 |10.20 |17.30| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1360 |Mean|usingany Using any method|14.31 |1.856 |10.65 |17.97| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1361 |Mean|usingany Using any method|14.54 |1.844 |10.91 |18.17| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1362 |Mean|usingany Using any method|14.98 |1.900 |11.23 |18.72| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1363 |Mean|usingany Using any method|15.26 |1.866 |11.58 |18.93| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1364 |Mean|usingany Using any method|15.49 |1.746 |12.05 |18.93| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1365 |Mean|usingany Using any method|15.67 |1.722 |12.27 |19.06| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1366 |Mean|usingany Using any method|15.79 |1.712 |12.41 |19.16| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1367 |Mean|usingany Using any method|15.76 |1.706 |12.40 |19.12| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1368 |Mean|usingany Using any method|15.77 |1.705 |12.41 |19.13| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1369 |Mean|usingany Using any method|16.43 |1.772 |12.94 |19.93| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1370 |Mean|usingany Using any method|17.05 |2.007 |13.09 |21.01| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1371 |Mean|usingany Using any method|17.57 |2.224 |13.18 |21.96| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1372 |Mean|usingany Using any method|18.06 |2.286 |13.56 |22.57| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1373 |Mean|usingany Using any method|18.19 |2.191 |13.87 |22.51| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1374 |Mean|usingany Using any method|18.78 |2.149 |14.55 |23.02| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1375 |Mean|usingany Using any method|18.82 |2.146 |14.59 |23.05| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1376 |Mean|usingany Using any method|19.26 |2.131 |15.06 |23.46| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1377 |Mean|usingany Using any method|19.58 |2.042 |15.56 |23.61| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1378 |Mean|usingany Using any method|19.75 |2.119 |15.58 |23.93| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1379 |Mean|usingany Using any method|20.29 |2.086 |16.18 |24.40| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1380 |Mean|usingany Using any method|20.82 |2.132 |16.62 |25.02| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1381 |Mean|usingany Using any method|21.52 |2.016 |17.55 |25.50| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1382 |Mean|usingany Using any method|21.77 |2.017 |17.79 |25.74| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1383 |Mean|usingany Using any method|22.24 |1.913 |18.47 |26.01| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1384 |Mean|usingany Using any method|22.92 |1.887 |19.20 |26.64| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1385 |Mean|usingany Using any method|23.63 |1.832 |20.02 |27.24| |--------------------------|----|-------------------------|--------|--------------|-----------------------|-----| |1386 |Mean|usingany Using any method|24.23 |1.800 |20.68 |27.78| |---------------------------------------------------------------------------------------------------------------|